home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #9 / CD 9 (Black) - 2001.iso / K-CS.dcr / 00206_Mouse Toggle del 2.ls < prev    next >
Encoding:
Text File  |  2001-05-17  |  724 b   |  22 lines

  1. on mouseEnter me
  2.   set the visible of sprite (the spriteNum of me + 1) to 1
  3. end
  4.  
  5. on mouseLeave me
  6.   set the visible of sprite (the spriteNum of me + 1) to 0
  7. end
  8.  
  9. on mouseDown me
  10.   set the visible of sprite (the spriteNum of me - 1) to 0
  11.   set the visible of sprite (the spriteNum of me - 2) to 1
  12.   set the visible of sprite (the spriteNum of me - 3) to 1
  13.   set the visible of sprite the spriteNum of me to 0
  14.   set the visible of sprite (the spriteNum of me + 1) to 0
  15.   set the locV of sprite 104 to 298
  16.   updateStage()
  17. end
  18.  
  19. on getBehaviorDescription
  20.   return "Hilite two fields for descriptions. Third field is intended for a toggling bitmap (checkboxes and such). The paramitra is 1 for default on, 0 for default off."
  21. end
  22.